curl --request GET \
--url http:///%7B{baseurl}%7D/api/v1/management/contacts/{contactId} \
--header 'x-api-key: <x-api-key>'
{
"data": {
"createdAt": "2024-12-11T08:59:37.550Z",
"environmentId": "cm37a748d0008hbwhqvvuba23",
"id": "cm4jnsxcd00ufh3aqz1b6zox6",
"updatedAt": "2024-12-11T08:59:37.550Z",
"userId": null
}
}
Retrieve a specific contact by its ID
curl --request GET \
--url http:///%7B{baseurl}%7D/api/v1/management/contacts/{contactId} \
--header 'x-api-key: <x-api-key>'
{
"data": {
"createdAt": "2024-12-11T08:59:37.550Z",
"environmentId": "cm37a748d0008hbwhqvvuba23",
"id": "cm4jnsxcd00ufh3aqz1b6zox6",
"updatedAt": "2024-12-11T08:59:37.550Z",
"userId": null
}
}
The ID of the contact to retrieve
OK
The response is of type object
.
Was this page helpful?